MESCIUS SPREAD for ASP.NET 10.0J
Group(SortInfo[]) メソッド

グループの比較子
ソート情報
構文
'Declaration
 
Public Overloads Sub Group( _
   ByVal sortInfo() As SortInfo _
) 
public void Group( 
   SortInfo[] sortInfo
)

パラメータ

sortInfo
グループの比較子
次のサンプル コードは、データ モデルをグループ化します。
private void button1_Click(object sender, EventArgs e)
{
    FarPoint.Web.Spread.Model.GroupDataModel gm = new FarPoint.Web.Spread.Model.GroupDataModel(FpSpread1.ActiveSheetView.DataModel);
    FarPoint.Web.Spread.SortInfo[] sort = new FarPoint.Web.Spread.SortInfo[1];
    sort[0] = new FarPoint.Web.Spread.SortInfo(0, true);
    gm.Group(sort);
    FpSpread1.ActiveSheetView.DataModel = gm;
}
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim gm As New FarPoint.Web.Spread.Model.GroupDataModel(FpSpread1.ActiveSheetView.DataModel)
    Dim sort(0) As FarPoint.Web.Spread.SortInfo
    sort(0) = New FarPoint.Web.Spread.SortInfo(0, True)
    gm.Group(sort)
    FpSpread1.ActiveSheetView.DataModel = gm
End Sub
参照

GroupDataModel クラス
GroupDataModel メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.